from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

82548

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-12-21
doggo - 1.1.3
Ebuild name:

net-dns/doggo-1.1.3

Description

Command-line DNS Client for Humans

Added to portage

2025-12-21

gammastep - 2.0.11-r1
Ebuild name:

x11-misc/gammastep-2.0.11-r1

Description

A screen color temperature adjusting software

Added to portage

2025-12-21

gcc - 13.4.1_p20251218
Ebuild name:

sys-devel/gcc-13.4.1_p20251218

Description

The GNU Compiler Collection

Added to portage

2025-12-21

gcc - 14.3.1_p20251219
Ebuild name:

sys-devel/gcc-14.3.1_p20251219

Description

The GNU Compiler Collection

Added to portage

2025-12-21

gcc - 15.2.1_p20251220
Ebuild name:

sys-devel/gcc-15.2.1_p20251220

Description

The GNU Compiler Collection

Added to portage

2025-12-21

glibc - 2.41-r8
Ebuild name:

sys-libs/glibc-2.41-r8

Description

GNU libc C library

Added to portage

2025-12-21

glibc - 2.42-r3
Ebuild name:

sys-libs/glibc-2.42-r3

Description

GNU libc C library

Added to portage

2025-12-21

gnatcoll-db - 26.0.0
Ebuild name:

dev-ada/gnatcoll-db-26.0.0

Description

GNAT Component Collection

Added to portage

2025-12-21

igbinary - 3.2.15_p20251126
Ebuild name:

dev-php/igbinary-3.2.15_p20251126

Description

A fast drop-in replacement for the standard PHP serialize

Added to portage

2025-12-21

libvisual-projectm - 2.1.2
Ebuild name:

media-plugins/libvisual-projectm-2.1.2

Description

A libvisual graphical music visualization plugin similar to

Added to portage

2025-12-21

pecl-imagick - 3.8.1
Ebuild name:

dev-php/pecl-imagick-3.8.1

Description

PHP wrapper for the ImageMagick library

Added to portage

2025-12-21

pecl-redis - 6.3.0
Ebuild name:

dev-php/pecl-redis-6.3.0

Description

PHP extension for interfacing with Redis

Added to portage

2025-12-21

redshift - 1.12-r14
Ebuild name:

x11-misc/redshift-1.12-r14

Description

A screen color temperature adjusting software

Added to portage

2025-12-21

2025-12-20
algol68g - 3.10.9
Ebuild name:

dev-lang/algol68g-3.10.9

Description

Algol 68 Genie compiler-interpreter

Added to portage

2025-12-20

alsa-lib - 1.2.15.1
Ebuild name:

media-libs/alsa-lib-1.2.15.1

Description

Advanced Linux Sound Architecture Library

Added to portage

2025-12-20

alsa-ucm-conf - 1.2.15.1
Ebuild name:

media-libs/alsa-ucm-conf-1.2.15.1

Description

ALSA ucm configuration files

Added to portage

2025-12-20

alsa-utils - 1.2.15.1
Ebuild name:

media-sound/alsa-utils-1.2.15.1

Description

Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)

Added to portage

2025-12-20

amatch - 0.6.0
Ebuild name:

dev-ruby/amatch-0.6.0

Description

Approximate Matching Extension for Ruby

Added to portage

2025-12-20

awscli - 1.44.4
Ebuild name:

app-admin/awscli-1.44.4

Description

Universal Command Line Environment for AWS

Added to portage

2025-12-20

bijiben - 40.2
Ebuild name:

app-misc/bijiben-40.2

Description

Note editor designed to remain simple to use

Added to portage

2025-12-20

bindfs - 1.18.3
Ebuild name:

sys-fs/bindfs-1.18.3

Description

FUSE filesystem for bind mounting with altered permissions

Added to portage

2025-12-20

bitwarden-desktop-bin - 2025.12.0
Ebuild name:

app-admin/bitwarden-desktop-bin-2025.12.0

Description

Bitwarden password manager desktop client

Added to portage

2025-12-20

blas-lapack-aux-wrapper - 6
Ebuild name:

sci-libs/blas-lapack-aux-wrapper-6

Description

BLAS/LAPACK wrappers for FlexiBLAS

Added to portage

2025-12-20

boto3 - 1.42.14
Ebuild name:

dev-python/boto3-1.42.14

Description

The AWS SDK for Python

Added to portage

2025-12-20

botocore - 1.42.14
Ebuild name:

dev-python/botocore-1.42.14

Description

Low-level, data-driven core of boto 3

Added to portage

2025-12-20

candy - 6.1.4
Ebuild name:

net-vpn/candy-6.1.4

Description

A reliable, low-latency, and anti-censorship virtual private network

Added to portage

2025-12-20

closure-compiler-bin - 20251216
Ebuild name:

dev-lang/closure-compiler-bin-20251216

Description

JavaScript optimizing compiler

Added to portage

2025-12-20

contracts - 0.17.3
Ebuild name:

dev-ruby/contracts-0.17.3

Description

provides contracts for Ruby

Added to portage

2025-12-20

cryptsetup - 2.8.3
Ebuild name:

sys-fs/cryptsetup-2.8.3

Description

Tool to setup encrypted devices with dm-crypt

Added to portage

2025-12-20

cudnn - 8.9.7.29-r1
Ebuild name:

dev-libs/cudnn-8.9.7.29-r1

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2025-12-20

cudnn - 9.14.0.64
Ebuild name:

dev-libs/cudnn-9.14.0.64

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2025-12-20

cudnn - 9.17.0.29
Ebuild name:

dev-libs/cudnn-9.17.0.29

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2025-12-20

cudnn - 9.8.0.87-r1
Ebuild name:

dev-libs/cudnn-9.8.0.87-r1

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2025-12-20

cudnn-frontend - 1.15.0
Ebuild name:

sci-ml/cudnn-frontend-1.15.0

Description

A c++ wrapper for the cudnn backend API

Added to portage

2025-12-20

cudnn-frontend - 1.16.1
Ebuild name:

sci-ml/cudnn-frontend-1.16.1

Description

A c++ wrapper for the cudnn backend API

Added to portage

2025-12-20

dconf-editor - 49.0
Ebuild name:

gnome-base/dconf-editor-49.0

Description

Graphical tool for editing the dconf configuration database

Added to portage

2025-12-20

dd-rescue - 1.99.22
Ebuild name:

sys-fs/dd-rescue-1.99.22

Description

Similar to dd but can copy from source with errors

Added to portage

2025-12-20

deno-bin - 2.6.3
Ebuild name:

dev-lang/deno-bin-2.6.3

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2025-12-20

eiciel - 0.10.1
Ebuild name:

gnome-extra/eiciel-0.10.1

Description

ACL editor for GNOME, with Nautilus extension

Added to portage

2025-12-20

ena-driver - 2.16.1
Ebuild name:

net-misc/ena-driver-2.16.1

Description

Amazon EC2 Elastic Network Adapter (ENA) kernel driver

Added to portage

2025-12-20

flatbuffers - 25.12.19
Ebuild name:

dev-libs/flatbuffers-25.12.19

Description

Memory efficient serialization library

Added to portage

2025-12-20

flatbuffers - 25.12.19
Ebuild name:

dev-python/flatbuffers-25.12.19

Description

RFC 7049 - Concise Binary Object Representation

Added to portage

2025-12-20

furo - 2025.12.19
Ebuild name:

dev-python/furo-2025.12.19

Description

Clean customisable Sphinx documentation theme

Added to portage

2025-12-20

fuse-overlayfs - 1.16
Ebuild name:

sys-fs/fuse-overlayfs-1.16

Description

FUSE implementation for overlayfs

Added to portage

2025-12-20

gallery-dl - 1.31.1
Ebuild name:

net-misc/gallery-dl-1.31.1

Description

Download image galleries and collections from several image hosting site

Added to portage

2025-12-20

gdb - 17.1
Ebuild name:

dev-debug/gdb-17.1

Description

GNU debugger

Added to portage

2025-12-20

gnome-boxes - 49.1
Ebuild name:

gnome-extra/gnome-boxes-49.1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-12-20

gnome-calculator - 49.2
Ebuild name:

gnome-extra/gnome-calculator-49.2

Description

A calculator application for GNOME

Added to portage

2025-12-20

gnome-calendar - 49.0.1
Ebuild name:

gnome-extra/gnome-calendar-49.0.1

Description

Manage your calendars with simple and modern interface

Added to portage

2025-12-20

gnome-characters - 49.1
Ebuild name:

gnome-extra/gnome-characters-49.1

Description

Unicode character map viewer and library

Added to portage

2025-12-20

gnome-chess - 49.2
Ebuild name:

games-board/gnome-chess-49.2

Description

Play the classic two-player boardgame of chess

Added to portage

2025-12-20

gnome-clocks - 49.0
Ebuild name:

gnome-extra/gnome-clocks-49.0

Description

Clocks application for GNOME

Added to portage

2025-12-20

gnome-console - 49.1
Ebuild name:

gui-apps/gnome-console-49.1

Description

A simple user-friendly terminal emulator for the GNOME desktop

Added to portage

2025-12-20

gnome-contacts - 49.0
Ebuild name:

gnome-extra/gnome-contacts-49.0

Description

GNOME contact management application

Added to portage

2025-12-20

gnome-logs - 49.0
Ebuild name:

gnome-extra/gnome-logs-49.0

Description

Log viewer for the systemd journal

Added to portage

2025-12-20

gnome-mahjongg - 49.0.1
Ebuild name:

games-board/gnome-mahjongg-49.0.1

Description

Disassemble a pile of tiles by removing matching pairs

Added to portage

2025-12-20

gnome-menus - 3.38.1
Ebuild name:

gnome-base/gnome-menus-3.38.1

Description

Library and layout configuration for the Desktop Menu fd.o specificat

Added to portage

2025-12-20

gnome-mines - 49.0.1
Ebuild name:

games-board/gnome-mines-49.0.1

Description

Clear hidden mines from a minefield

Added to portage

2025-12-20

gnome-network-displays - 0.98.0
Ebuild name:

gnome-extra/gnome-network-displays-0.98.0

Description

Stream the desktop to Wi-Fi Display capable devices

Added to portage

2025-12-20

gnome-nibbles - 4.4.2
Ebuild name:

games-arcade/gnome-nibbles-4.4.2

Description

Nibbles clone for GNOME

Added to portage

2025-12-20

gnome-sudoku - 49.2
Ebuild name:

games-puzzle/gnome-sudoku-49.2

Description

Test your logic skills in this number grid puzzle

Added to portage

2025-12-20

gnome-system-monitor - 49.1
Ebuild name:

gnome-extra/gnome-system-monitor-49.1

Description

The Gnome System Monitor

Added to portage

2025-12-20

gnome-tweaks - 49.0
Ebuild name:

gnome-extra/gnome-tweaks-49.0

Description

Customize advanced GNOME options

Added to portage

2025-12-20

gnome-weather - 49.0
Ebuild name:

gnome-extra/gnome-weather-49.0

Description

A weather application for GNOME

Added to portage

2025-12-20

hcloud - 2.13.0
Ebuild name:

dev-python/hcloud-2.13.0

Description

Official Hetzner Cloud python library

Added to portage

2025-12-20

igt-gpu-tools - 2.3
Ebuild name:

x11-apps/igt-gpu-tools-2.3

Description

Intel GPU userland tools

Added to portage

2025-12-20

intervaltree - 3.2.0
Ebuild name:

dev-python/intervaltree-3.2.0

Description

Editable interval tree data structure for Python 2 and 3

Added to portage

2025-12-20

ispc - 1.29.1
Ebuild name:

dev-lang/ispc-1.29.1

Description

Intel SPMD Program Compiler

Added to portage

2025-12-20

kotlin-bin - 2.3.0
Ebuild name:

dev-lang/kotlin-bin-2.3.0

Description

Statically typed language that targets the JVM and JavaScript

Added to portage

2025-12-20

labwc - 0.9.3
Ebuild name:

gui-wm/labwc-0.9.3

Description

Openbox alternative for wayland

Added to portage

2025-12-20

libfilezilla - 0.53.1
Ebuild name:

dev-libs/libfilezilla-0.53.1

Description

C++ library offering some basic functionality for platform-independent

Added to portage

2025-12-20

libgedit-amtk - 5.9.2
Ebuild name:

gui-libs/libgedit-amtk-5.9.2

Description

Actions, Menus and Toolbars Kit for GTK applications

Added to portage

2025-12-20

libgedit-gfls - 0.3.1
Ebuild name:

gui-libs/libgedit-gfls-0.3.1

Description

A module dedicated to file loading and saving

Added to portage

2025-12-20

libgedit-gtksourceview - 299.5.0
Ebuild name:

gui-libs/libgedit-gtksourceview-299.5.0

Description

Gedit Technology - Source code editing widget

Added to portage

2025-12-20

libgedit-tepl - 6.13.0
Ebuild name:

gui-libs/libgedit-tepl-6.13.0

Description

GtkSourceView-based text editors and IDE helper library

Added to portage

2025-12-20

meld - 3.22.3
Ebuild name:

dev-util/meld-3.22.3

Description

A graphical diff and merge tool

Added to portage

2025-12-20

mergerfs - 2.41.1
Ebuild name:

sys-fs/mergerfs-2.41.1

Description

A featureful union filesystem

Added to portage

2025-12-20

meson - 1.10.0
Ebuild name:

dev-build/meson-1.10.0

Description

Open source build system

Added to portage

2025-12-20

minitest - 6.0.0
Ebuild name:

dev-ruby/minitest-6.0.0

Description

minitest/unit is a small and fast replacement for ruby's huge and slow test

Added to portage

2025-12-20

minitest-global_expectations - 1.0.2
Ebuild name:

dev-ruby/minitest-global_expectations-1.0.2

Description

Support minitest expectation methods for all objects

Added to portage

2025-12-20

minitest-hooks - 1.5.3
Ebuild name:

dev-ruby/minitest-hooks-1.5.3

Description

Adds around and before_all/after_all/around_all hooks for Minitest

Added to portage

2025-12-20

nbclient - 0.10.3
Ebuild name:

dev-python/nbclient-0.10.3

Description

A client library for executing Jupyter notebooks

Added to portage

2025-12-20

nushell - 0.109.1
Ebuild name:

app-shells/nushell-0.109.1

Description

A new type of shell, written in Rust

Added to portage

2025-12-20

oslo-log - 8.0.0
Ebuild name:

dev-python/oslo-log-8.0.0

Description

OpenStack logging config library, configuration for all openstack project

Added to portage

2025-12-20

pandas - 3.0.0_rc1
Ebuild name:

dev-python/pandas-3.0.0_rc1

Description

Powerful data structures for data analysis and statistics

Added to portage

2025-12-20

pandora_box - 0.17.0
Ebuild name:

sys-apps/pandora_box-0.17.0

Description

Syd's log inspector & profile writer

Added to portage

2025-12-20

passt - 2025.12.15
Ebuild name:

net-misc/passt-2025.12.15

Description

User-mode networking daemons for VMs and namespaces, replacement for Slir

Added to portage

2025-12-20

pecl-apcu - 5.1.27
Ebuild name:

dev-php/pecl-apcu-5.1.27

Description

Stripped down version of APC supporting only user cache

Added to portage

2025-12-20

pecl-yaml - 2.3.0
Ebuild name:

dev-php/pecl-yaml-2.3.0

Description

YAML 1.1 (YAML Ain't Markup Language) serialization for PHP

Added to portage

2025-12-20

php - 8.2.30
Ebuild name:

dev-lang/php-8.2.30

Description

The PHP language runtime engine

Added to portage

2025-12-20

php - 8.3.29
Ebuild name:

dev-lang/php-8.3.29

Description

The PHP language runtime engine

Added to portage

2025-12-20

php - 8.4.16
Ebuild name:

dev-lang/php-8.4.16

Description

The PHP language runtime engine

Added to portage

2025-12-20

php - 8.5.1
Ebuild name:

dev-lang/php-8.5.1

Description

The PHP language runtime engine

Added to portage

2025-12-20

picard - 3.0_pre20251219
Ebuild name:

media-sound/picard-3.0_pre20251219

Description

Cross-platform music tagger

Added to portage

2025-12-20

postfix - 3.11_pre20251219
Ebuild name:

mail-mta/postfix-3.11_pre20251219

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-12-20

prometheus-podman-exporter - 1.19.0
Ebuild name:

app-metrics/prometheus-podman-exporter-1.19.0

Description

Exporter for podman giving containers, pods, images,

Added to portage

2025-12-20

quadrapassel - 49.2.3
Ebuild name:

games-puzzle/quadrapassel-49.2.3

Description

Fit falling blocks together

Added to portage

2025-12-20

quickcrypt - 0.9.2b-r1
Ebuild name:

app-crypt/quickcrypt-0.9.2b-r1

Description

gives you a quick MD5 Password from any string

Added to portage

2025-12-20

rainbowcrack - 1.8
Ebuild name:

app-crypt/rainbowcrack-1.8

Description

Hash cracker that precomputes plaintext - ciphertext pairs in advance

Added to portage

2025-12-20

rdoc - 7.0.1
Ebuild name:

dev-ruby/rdoc-7.0.1

Description

An extended version of the RDoc library from Ruby 1.8

Added to portage

2025-12-20

rhash - 1.4.5
Ebuild name:

app-crypt/rhash-1.4.5

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2025-12-20

rhash - 1.4.6-r1
Ebuild name:

app-crypt/rhash-1.4.6-r1

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2025-12-20

rotix - 0.83-r3
Ebuild name:

app-crypt/rotix-0.83-r3

Description

Rotix allows you to generate rotational obfuscations

Added to portage

2025-12-20

rpm-sequoia - 1.8.0
Ebuild name:

app-crypt/rpm-sequoia-1.8.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2025-12-20

rpm-sequoia - 1.9.0
Ebuild name:

app-crypt/rpm-sequoia-1.9.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2025-12-20

rss - 0.3.2
Ebuild name:

dev-ruby/rss-0.3.2

Description

Family of libraries that support various formats of XML feeds

Added to portage

2025-12-20

s390-tools - 2.40.0-r1
Ebuild name:

sys-apps/s390-tools-2.40.0-r1

Description

User space utilities for the zSeries (s390) Linux kernel and device d

Added to portage

2025-12-20

sbctl - 0.15.4
Ebuild name:

app-crypt/sbctl-0.15.4

Description

Secure Boot key manager

Added to portage

2025-12-20

sbctl - 0.16
Ebuild name:

app-crypt/sbctl-0.16

Description

Secure Boot key manager

Added to portage

2025-12-20

scribus - 1.7.1
Ebuild name:

app-office/scribus-1.7.1

Description

Desktop publishing (DTP) and layout program

Added to portage

2025-12-20

skopeo - 1.21.0
Ebuild name:

app-containers/skopeo-1.21.0

Description

Work with remote container images registries

Added to portage

2025-12-20

slack - 4.47.72
Ebuild name:

net-im/slack-4.47.72

Description

Team collaboration tool

Added to portage

2025-12-20

soapyuhd - 0.4.1_p20251220
Ebuild name:

net-wireless/soapyuhd-0.4.1_p20251220

Description

Soapy SDR plugins for UHD supported SDR devices

Added to portage

2025-12-20

sof-firmware - 2025.12
Ebuild name:

sys-firmware/sof-firmware-2025.12

Description

Sound Open Firmware (SOF) binary files

Added to portage

2025-12-20

sourcegit - 2025.40
Ebuild name:

dev-vcs/sourcegit-2025.40

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-12-20

sphinx - 9.1.0_rc1
Ebuild name:

dev-python/sphinx-9.1.0_rc1

Description

Python documentation generator

Added to portage

2025-12-20

sqlparse - 0.5.5
Ebuild name:

dev-python/sqlparse-0.5.5

Description

A non-validating SQL parser module for Python

Added to portage

2025-12-20

squashfuse - 0.6.1
Ebuild name:

sys-fs/squashfuse-0.6.1

Description

FUSE filesystem to mount squashfs archives

Added to portage

2025-12-20

syd - 3.47.0
Ebuild name:

sys-apps/syd-3.47.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-12-20

system-packages - 1.1.2
Ebuild name:

app-emacs/system-packages-1.1.2

Description

Manage your installed packages with Emacs

Added to portage

2025-12-20

tecla - 49.0
Ebuild name:

gnome-extra/tecla-49.0

Description

Tecla is a keyboard layout viewer

Added to portage

2025-12-20

testtools - 2.8.2
Ebuild name:

dev-python/testtools-2.8.2

Description

Extensions to the Python standard library unit testing framework

Added to portage

2025-12-20

ttyplot - 1.7.4
Ebuild name:

app-admin/ttyplot-1.7.4

Description

Realtime plotting utility with data input from stdin

Added to portage

2025-12-20

turbovnc - 3.2.91
Ebuild name:

net-misc/turbovnc-3.2.91

Description

A fast replacement for TigerVNC

Added to portage

2025-12-20

typer - 0.20.1
Ebuild name:

dev-python/typer-0.20.1

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2025-12-20

umockdev - 0.19.4
Ebuild name:

dev-util/umockdev-0.19.4

Description

Mock hardware devices for creating unit tests

Added to portage

2025-12-20

vlc - 3.0.22
Ebuild name:

media-video/vlc-3.0.22

Description

Media player and framework with support for most multimedia files and stream

Added to portage

2025-12-20

xorg-proto - 2025.1
Ebuild name:

x11-base/xorg-proto-2025.1

Description

X.Org combined protocol headers

Added to portage

2025-12-20

xvfb-run - 21.1.21.1
Ebuild name:

x11-misc/xvfb-run-21.1.21.1

Description

Run a command in a virtual X server environment

Added to portage

2025-12-20

ydiff - 1.5
Ebuild name:

dev-util/ydiff-1.5

Description

Colored, side-by-side diff terminal viewer (ex. cdiff)

Added to portage

2025-12-20

yelp - 49.0
Ebuild name:

gnome-extra/yelp-49.0

Description

Help browser for GNOME

Added to portage

2025-12-20

yelp-xsl - 49.0
Ebuild name:

gnome-extra/yelp-xsl-49.0

Description

XSL stylesheets for yelp

Added to portage

2025-12-20

ytmusicapi - 1.11.4
Ebuild name:

dev-python/ytmusicapi-1.11.4

Description

Unofficial API for YouTube Music

Added to portage

2025-12-20

zenity - 4.2.1
Ebuild name:

gnome-extra/zenity-4.2.1

Description

Tool to display dialogs from the commandline and shell scripts

Added to portage

2025-12-20

zint - 2.16.0
Ebuild name:

media-libs/zint-2.16.0

Description

Barcode encoding library supporting over 50 symbologies

Added to portage

2025-12-20

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 51.7 ms